home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mandrake_MDKSA-2003-017.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  92 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. # This plugin text was extracted from Mandrake Linux Security Advisory MDKSA-2003:017-1
  5. #
  6.  
  7.  
  8. if ( ! defined_func("bn_random") ) exit(0);
  9. if(description)
  10. {
  11.  script_id(14002);
  12.  script_version ("$Revision: 1.4 $");
  13.  script_bugtraq_id(6753);
  14.  script_cve_id("CAN-2002-1160");
  15.  
  16.  name["english"] = "MDKSA-2003:017-1: pam";
  17.  
  18.  script_name(english:name["english"]);
  19.  
  20.  desc["english"] = "
  21. The remote host is missing the patch for the advisory MDKSA-2003:017-1 (pam).
  22.  
  23.  
  24. Andreas Beck discovered that the pam_xauth module would forward authorization
  25. information from the root account to unprivileged users. This can be exploited
  26. by a local attacker to gain access to the root user's X session. In order for it
  27. to be successfully exploited, the attacker would have to somehow get the root
  28. user to su to the account belonging to the attacker.
  29. Update:
  30. The previous fix was incorrect because certain applications, such as userdrake
  31. and net_monitor could not be executed as root, although they could be executed
  32. as users who successfully authenticated as root.
  33.  
  34.  
  35. Solution : http://www.mandrakesoft.com/security/advisories?name=MDKSA-2003:017-1
  36. Risk factor : High";
  37.  
  38.  
  39.  
  40.  script_description(english:desc["english"]);
  41.  
  42.  summary["english"] = "Check for the version of the pam package";
  43.  script_summary(english:summary["english"]);
  44.  
  45.  script_category(ACT_GATHER_INFO);
  46.  
  47.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  48.  family["english"] = "Mandrake Local Security Checks";
  49.  script_family(english:family["english"]);
  50.  
  51.  script_dependencies("ssh_get_info.nasl");
  52.  script_require_keys("Host/Mandrake/rpm-list");
  53.  exit(0);
  54. }
  55.  
  56. include("rpm.inc");
  57. if ( rpm_check( reference:"pam-0.75-25.2mdk", release:"MDK8.2", yank:"mdk") )
  58. {
  59.  security_hole(0);
  60.  exit(0);
  61. }
  62. if ( rpm_check( reference:"pam-devel-0.75-25.2mdk", release:"MDK8.2", yank:"mdk") )
  63. {
  64.  security_hole(0);
  65.  exit(0);
  66. }
  67. if ( rpm_check( reference:"pam-doc-0.75-25.2mdk", release:"MDK8.2", yank:"mdk") )
  68. {
  69.  security_hole(0);
  70.  exit(0);
  71. }
  72. if ( rpm_check( reference:"pam-0.75-25.2mdk", release:"MDK9.0", yank:"mdk") )
  73. {
  74.  security_hole(0);
  75.  exit(0);
  76. }
  77. if ( rpm_check( reference:"pam-devel-0.75-25.2mdk", release:"MDK9.0", yank:"mdk") )
  78. {
  79.  security_hole(0);
  80.  exit(0);
  81. }
  82. if ( rpm_check( reference:"pam-doc-0.75-25.2mdk", release:"MDK9.0", yank:"mdk") )
  83. {
  84.  security_hole(0);
  85.  exit(0);
  86. }
  87. if (rpm_exists(rpm:"pam-", release:"MDK8.2")
  88.  || rpm_exists(rpm:"pam-", release:"MDK9.0") )
  89. {
  90.  set_kb_item(name:"CAN-2002-1160", value:TRUE);
  91. }
  92.